home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC World Komputer 2010 April
/
PCWorld0410.iso
/
pluginy Firefox
/
59426
/
59426.xpi
/
chrome
/
content
/
overlay.js
< prev
Wrap
Text File
|
2009-11-08
|
766b
|
22 lines
var bookerfox = {
onLoad: function() {
// initialization code
this.initialized = true;
this.strings = document.getElementById("bookerfox-strings");
},
onMenuItemCommand: function(e) {
var promptService = Components.classes["@mozilla.org/embedcomp/prompt-service;1"]
.getService(Components.interfaces.nsIPromptService);
promptService.alert(window, this.strings.getString("helloMessageTitle"),
this.strings.getString("helloMessage"));
},
onToolbarButtonCommand: function(e) {
// just reuse the function above. you can change this, obviously!
bookerfox.onMenuItemCommand(e);
}
};
window.addEventListener("load", bookerfox.onLoad, false);